home *** CD-ROM | disk | FTP | other *** search
/ The Original Shareware 1.1 / The Original Shareware (WeMake CDs)(Volume 1.1)(CDs, Inc)(1993).iso / 16 / fpc225_3.zip / F-PCHELP.ZIP / VIEW.HLP < prev    next >
Text File  |  1988-07-27  |  2KB  |  73 lines

  1. \ VIEW.HLP      Viewing code for F-PC.                  by Tom Zimmer
  2.  
  3. viewlen         ( --- a1 )
  4.  
  5. >VIEWLINE       ( n1 --- )      \ move to line n1 of currently open file.
  6.  
  7. <viewlines>     ( n1 n2 --- )
  8.  
  9. VIEWLINES       ( n1 n2 --- )   \ n1 lines to view, n2 line to underline.
  10.  
  11. NAME>PAD        ( A1 --- PAD )
  12.                 Move the name field to PAD and filter out the hi bit
  13.                 of the last character in name. Also clears all but
  14.                 lower 5 bits of name count.
  15.  
  16. ?prepend.vpath  ( a1 --- a1 )
  17.  
  18. >viewfile       ( cfa --- offset a1 )   \ returns the string name in PAD
  19.  
  20. <VIEW>          ( a1 --- f1 )   \ VIEW the name specified by a1 the cfa
  21.  
  22. foundit
  23.  
  24. <HELP>          ( a1 --- f1 )   \ Show the HELP for a word specified by a1
  25.  
  26. .VIEWHELP       ( --- )
  27.  
  28. DOVIEW          ( | name --- )
  29.                 Like HELP, but displays full screen of word source.
  30.  
  31. HELPVIEW        ( | name --- )
  32.                 Displays the help for "name" in the top 7 lines, and the
  33.                 source for "name" in the next 12 lines.
  34.  
  35. VIEW            ( | name --- )
  36.                 A DEFERED word that contains either DOVIEW, or HELPVIEW.
  37.                 View the source for "name".
  38.  
  39. LL              ( | name --- )
  40.                 LL is a pseudonym for VIEW, displays Help and Source for
  41.                 "name".
  42.  
  43. HELPON          ( --- )
  44.                 Enable the display of HELP with VIEW.
  45.  
  46. HELPOFF         ( --- )
  47.                 Disable the display of HELP with VIEW.
  48.  
  49. HELP            ( | name --- )
  50.                 VIEW is followed on the same line by name.
  51.                 Display a help file entry fore the "name" specified.
  52.  
  53. ?fileopen       ( --- )
  54.                 Verify a file is open, give an error message if
  55.                 no file is open.
  56.  
  57. L               ( --- )         \ display 18 lines starting at current
  58.  
  59. LIST            ( n1 --- )      \ n1 is the line number to list from
  60.  
  61. LOAD            ( n1 --- )      \ n1 is the line number to load from
  62.  
  63. +lines          ( n1 --- )      \ move forward n1 lines in the current file.
  64.  
  65. N               ( --- )         \ go forward 16 lines and display 18 lines.
  66.  
  67. -1line          ( --- )         \ backup 1 line from current loadline
  68.  
  69. -lines          ( n1 --- )      \ backup n1 lines in the current file.
  70.  
  71. B               ( --- )         \ backup 16 lines in current file and
  72.  
  73.